home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / encodings / undefined.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  1KB  |  39 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. """ Python 'undefined' Codec
  5.  
  6.     This codec will always raise a ValueError exception when being
  7.     used. It is intended for use by the site.py file to switch off
  8.     automatic string to Unicode coercion.
  9.  
  10. Written by Marc-Andre Lemburg (mal@lemburg.com).
  11.  
  12. (c) Copyright CNRI, All Rights Reserved. NO WARRANTY.
  13.  
  14. """
  15. import codecs
  16.  
  17. class Codec(codecs.Codec):
  18.     
  19.     def encode(self, input, errors = 'strict'):
  20.         raise UnicodeError, 'undefined encoding'
  21.  
  22.     
  23.     def decode(self, input, errors = 'strict'):
  24.         raise UnicodeError, 'undefined encoding'
  25.  
  26.  
  27.  
  28. class StreamWriter(Codec, codecs.StreamWriter):
  29.     pass
  30.  
  31.  
  32. class StreamReader(Codec, codecs.StreamReader):
  33.     pass
  34.  
  35.  
  36. def getregentry():
  37.     return (Codec().encode, Codec().decode, StreamReader, StreamWriter)
  38.  
  39.